home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / NETSERV.IN_ / netserv.inf
Encoding:
Windows Setup INFormation  |  2003-03-24  |  3.3 KB  |  95 lines

  1. ; -- NETSERV.INX --
  2. ;
  3. ; File And Print Services.
  4. ;
  5. ; Copyright (c) Microsoft Corporation.  All rights reserved.
  6.  
  7. [Version]
  8. Signature   = "$Windows NT$"
  9. Class       = NetService
  10. ClassGUID   = {4d36e974-e325-11ce-bfc1-08002be10318}
  11. Provider    = %Msft%
  12. LayoutFile  = layout.inf
  13. DriverVer=10/01/2002,5.2.3790.0
  14.  
  15. [Manufacturer]
  16. %Msft%=MSFT
  17.  
  18. [MSFT]
  19. %MSServer_Desc% = Install.ndi, MS_SERVER
  20.  
  21. [Install.ndi]
  22. AddReg = MSServer.ndi.AddReg
  23. Characteristics = 0x0080    ; NCF_HAS_UI
  24.  
  25. [Install.ndi.Services]
  26. AddService = LanmanServer,,     LanmanServer_Service_Inst,  Server_Evt,, Server
  27. AddService = Srv,,              Srv_Service_Inst,           Srv_Evt
  28.  
  29. [Install.ndi.Remove.Services]
  30. DelService = LanmanServer
  31. DelService = Srv
  32.  
  33. [LanmanServer_Service_Inst]
  34. DisplayName     =   %LanmanServer_Display%
  35. ServiceType     =   0x20    ;SERVICE_WIN32_SHARE_PROCESS
  36. StartType       =   2       ;SERVICE_AUTO_START
  37. ErrorControl    =   1       ;SERVICE_ERROR_NORMAL
  38. ServiceBinary   =   %11%\svchost.exe -k netsvcs
  39. StartName       =   LocalSystem
  40. AddReg          =   MSServer.Server.AddReg
  41. Description     =   %LanmanServer_Desc%
  42.  
  43. [Srv_Service_Inst]
  44. DisplayName     =   %Srv_Desc%
  45. ServiceType     =   2   ;SERVICE_FILE_SYSTEM_DRIVER
  46. StartType       =   3   ;SERVICE_DEMAND_START
  47. ErrorControl    =   1   ;SERVICE_ERROR_NORMAL
  48. ServiceBinary   =   %12%\srv.sys
  49. LoadOrderGroup  =   Network
  50. Description     =   %Srv_Desc%
  51.  
  52. [MSServer.ndi.AddReg]
  53. HKR, Ndi,            ClsID,                     0, {7F368827-9516-11d0-83D9-00A0C911E5DF}
  54. HKR, Ndi,            Service,                   0, LanmanServer
  55. HKR, Ndi,            CoServices,                0x00010000, "LanmanServer", "Browser", "Srv"
  56. HKR, Ndi,            ExcludeSetupStartServices, 0x00010000, "LanmanServer", "Browser", "Srv"
  57. HKR, Ndi,            HelpText,                  0, "@netcfgx.dll,-50003"
  58. HKR, Ndi\Interfaces, UpperRange,                0, "winnet5"
  59. HKR, Ndi\Interfaces, LowerRange,                0, "netbios,ipx,netbios_smb"
  60.  
  61. [MSServer.Server.AddReg]
  62. HKR, AutotunedParameters, ,                  0x00010  ;No values
  63. HKR, Shares,              ,                  0x00010  ;No values
  64. HKR, Parameters,          NullSessionPipes,  0x10000, "COMNAP","COMNODE","SQL\QUERY","SPOOLSS","EPMAPPER","LOCATOR","TrkWks","TrkSvr"
  65. HKR, Parameters,          NullSessionShares, 0x10000, "COMCFG", "DFS$"
  66. HKR, Parameters,          ServiceDll,        0x20000, "%%SystemRoot%%\System32\srvsvc.dll"
  67.  
  68. [Server_Evt]
  69. AddReg = Server_Evt_AddReg
  70.  
  71. [Server_Evt_AddReg]
  72. HKR,, EventMessageFile, 0x00020000, "%%SystemRoot%%\System32\netevent.dll"
  73. HKR,, TypesSupported,   0x00010001, 0x00000007
  74.  
  75. [Srv_Evt]
  76. AddReg = Srv_Evt_AddReg
  77.  
  78. [Srv_Evt_AddReg]
  79. HKR,, EventMessageFile, 0x00020000, "%%SystemRoot%%\System32\netevent.dll"
  80. HKR,, TypesSupported,   0x00010001, 0x00000007
  81.  
  82. [Strings]
  83. Msft = "Microsoft"
  84.  
  85. ; Component description
  86. MSServer_Desc = "File and Printer Sharing for Microsoft Networks"
  87.  
  88. ; Do not localize these
  89.  
  90. ; Service descriptions
  91. LanmanServer_Display = "Server"
  92. LanmanServer_Desc    = "Supports file, print, and named-pipe sharing over the network for this computer. If this service is stopped, these functions will be unavailable. If this service is disabled, any services that explicitly depend on it will fail to start."
  93. Srv_Desc = "Srv"
  94.  
  95.